You have been able to get a hold of the list of users affected and need to notify a credit card blocking service.
Example derived from: https://gist.github.com/jorin-vogel/2e43ffa981a97bc17259
In [2]:
ls *.json
In [3]:
import pandas as pd
In [4]:
dataset = pd.read_json("social.json")
In [5]:
dataset.columns
Out[5]:
In [6]:
dataset[['name', 'creditcard']].head()
Out[6]:
In [ ]: